/* ===== BODY ===== */
html {
  background-color: rgb(82, 104, 104); /* same as footer */
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
position: relative;
  background-image: url("../images/Images/Scene17BG.png");
  color: #f0f0f0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: monospace;
  margin: 0;
  padding: 0;
}


body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* ===== HEADER ===== */
header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 60px;   /* 👈 KEY FIX */
}

/* Keeps header height stable even if tags are removed */
.header-content {
  margin-bottom: 30px;
}

/* ===== NAV ===== */
nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: black;
  padding: 15px 0;

  -webkit-mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 30px;
  margin: 0 20px;
  text-align: center;
  transition: color 0.3s ease, font-size 0.3s ease;
}

nav a:hover {
  color: #40c55d;
  font-size: 35px;
}

/* ===== TAGS ===== */
.tags-btn {
  margin-top: 10px;
}

.tags-btn button {
  background-color: rgba(255,255,255,0.1);
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
}

/* ===== BLOG CONTENT ===== */
main {
  max-width: 800px;
  margin: auto;
  flex: 1 0 auto;
 
  padding-bottom: 300px; /* move content away from footer */
  display: flex;
  flex-direction: column;
  align-items: center; /* center content horizontally */
  gap: 30px;           /* optional space between blog items */
}


.Game-Devblog img {
  width: 400px;
  display: block;
  margin: 0 auto;
  transition: width 0.3s ease;
}

.Game-Devblog img:hover {
  width: 420px;
}

/* ===== FOOTER (UNCHANGED) ===== */
footer {
  text-align: center;
  opacity: 0.6;
  font-size: 14px;
  background-color: rgb(82, 104, 104);
  padding-bottom: 10px;
  -webkit-mask-image: linear-gradient(
    to top,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    black 70%,
    transparent 100%
  );
}

.Privacy-Policy {
  color: white;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, font-size 0.2s ease;
}

.Privacy-Policy:hover {
  color: black;
  font-size: 15px;
}

.Socials img {
  width: 30px;
}
.support-me {
  text-align: center;
}

.support-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #29abe0;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.support-btn:hover {
  opacity: 0.85;
}
body {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.loaded {
  opacity: 1;
  transform: translateY(0);
}
/* ===== MOBILE NAV STACK ONLY ===== */
@media (max-width: 768px) {

  nav {
    flex-direction: column;
    gap: 12px;
  }
  nav {
    padding-bottom: 50px;
  }
  nav a {
    font-size: 18px;
  }

}
/* ===== MOBILE: SHRINK SLIMO IMAGE ===== */
@media (max-width: 768px) {
  .Game-Devblog img {
    width: 280px;     /* smaller on mobile */
  }

  .Game-Devblog img:hover {
    width: 280px;     /* disable grow on mobile */
  }
}

@media (max-width: 480px) {
  .Game-Devblog img {
    width: 240px;     /* extra small phones */
  }
  footer {
    font-size: 12px;
    padding: 20px 10px;
  }

  .End img {
    width: 150px;
    height: auto;
  }

  .Privacy-Policy {
    font-size: 13px;
  }

  .Privacy-Policy:hover {
    font-size: 14px;
  }

  .Socials img {
    width: 25px;
  }
}

